"use client"; type Props = { current: number; total: number; accent: string }; export function ProgressBar({ current, total, accent }: Props) { const pct = total > 0 ? (current / total) * 100 : 0; return (